home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gdevepsn.c < prev    next >
C/C++ Source or Header  |  1994-09-18  |  15KB  |  498 lines

  1. /* Copyright (C) 1989-1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevepsn.c */
  20. /*
  21.  * Epson (and similar) dot-matrix printer driver for Ghostscript.
  22.  *
  23.  * Four devices are defined here: 'epson', 'eps9mid', 'eps9high', and 'ibmpro'.
  24.  * The 'epson' device is the generic device, for 9-pin and 24-pin printers.
  25.  * 'eps9high' is a special mode for 9-pin printers where scan lines are
  26.  * interleaved in multiple passes to produce high vertical resolution at
  27.  * the expense of several passes of the print head.  'eps9mid' is a special
  28.  * mode for 9 pin printers too, scan lines are interleaved but with next
  29.  * vertical line. 'ibmpro' is for the IBM ProPrinter, which has slightly 
  30.  * (but only slightly) different control codes.
  31.  *
  32.  * Thanks to David Wexelblat (dwex@mtgzfs3.att.com) for the 'eps9high' code,
  33.  * to Guenther Thomsen (thomsen@cs.tu-berlin.de) for the 'eps9mid' code,
  34.  * and to James W. Birdsall (jwbirdsa@picarefy.picarefy.com) for the
  35.  * 'ibmpro' modifications.
  36.  */
  37. #include "gdevprn.h"
  38.  
  39. /*
  40.  * Define whether the printer is archaic -- so old that it doesn't
  41.  * support settable tabs, pitch, or left margin.  (This should be a
  42.  * run-time property....)  Note: the IBM ProPrinter is archaic.
  43.  */
  44. /*#define ARCHAIC 1*/
  45.  
  46. /*
  47.  * Define whether the printer is a Panasonic 9-pin printer,
  48.  * which sometimes doesn't recognize a horizontal tab command
  49.  * when a line contains a lot of graphics commands,
  50.  * requiring a "backspace, space" sequence before a tab.
  51.  */
  52. /*#define TAB_HICCUP 1*/
  53.  
  54. /*
  55.  * Define the minimum distance for which it's worth converting white space
  56.  * into a tab.  This can be specified in pixels (to save transmission time),
  57.  * in tenths of an inch (for printers where tabs provoke actual head motion),
  58.  * or both.  The distance must meet BOTH criteria for the driver to tab,
  59.  * so an irrelevant criterion should be set to 0 rather than infinite.
  60.  */
  61. #define MIN_TAB_PIXELS 10
  62. #define MIN_TAB_10THS 15
  63.  
  64. /*
  65.  * Valid values for X_DPI:
  66.  *
  67.  *    For 9-pin printers: 60, 120, 240
  68.  *    For 24-pin printers: 60, 120, 180, 240, 360
  69.  *
  70.  * The value specified at compile time is the default value used if the
  71.  * user does not specify a resolution at runtime.
  72.  */
  73. #ifndef X_DPI
  74. #  define X_DPI 240
  75. #endif
  76.  
  77. /*
  78.  * For Y_DPI, a given printer will support a base resolution of 60 or 72;
  79.  * check the printer manual.  The Y_DPI value must be a multiple of this
  80.  * base resolution.  Valid values for Y_DPI:
  81.  *
  82.  *    For 9-pin printers: 1*base_res
  83.  *    For 24-pin printers: 1*base_res, 3*base_res
  84.  *
  85.  * The value specified at compile time is the default value used if the
  86.  * user does not specify a resolution at runtime.
  87.  */
  88.  
  89. #ifndef Y_BASERES
  90. #  define Y_BASERES 72
  91. #endif
  92. #ifndef Y_DPI
  93. #  define Y_DPI (1*Y_BASERES)
  94. #endif
  95.  
  96. /* The device descriptors */
  97. private dev_proc_print_page(epson_print_page);
  98. private dev_proc_print_page(eps9mid_print_page); 
  99. private dev_proc_print_page(eps9high_print_page);
  100. private dev_proc_print_page(ibmpro_print_page);
  101.  
  102. /* Standard Epson device */
  103. gx_device_printer far_data gs_epson_device =
  104.   prn_device(prn_std_procs, "epson",
  105.     DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS,
  106.     X_DPI, Y_DPI,
  107.     0.2, 0.0, 0.0, 0.0,            /* margins */
  108.     1, epson_print_page);
  109.  
  110. /* Mid-res (interleaved, 1 pass per line) 9-pin device */
  111. gx_device_printer far_data gs_eps9mid_device = 
  112.   prn_device(prn_std_procs, "eps9mid",
  113.     DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS,
  114.     X_DPI, 3*Y_BASERES,
  115.     0.2, 0.0, 0, 0.0,            /* margins */
  116.     1, eps9mid_print_page);
  117.  
  118.  
  119. /* High-res (interleaved) 9-pin device */
  120. gx_device_printer far_data gs_eps9high_device = 
  121.   prn_device(prn_std_procs, "eps9high",
  122.     DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS,
  123.     X_DPI, 3*Y_BASERES,
  124.     0.2, 0.0, 0.0, 0.0,            /* margins */
  125.     1, eps9high_print_page);
  126.  
  127. /* IBM ProPrinter device */
  128. gx_device_printer far_data gs_ibmpro_device =
  129.   prn_device(prn_std_procs, "ibmpro",
  130.     DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS,
  131.     X_DPI, Y_DPI,
  132.     0.2, 0.0, 0.0, 0.0,            /* margins */
  133.     1, ibmpro_print_page);
  134.  
  135. /* ------ Driver procedures ------ */
  136.  
  137. /* Forward references */
  138. private void eps_output_run(P6(byte *, int, int, char, FILE *, int));
  139.  
  140. /* Send the page to the printer. */
  141. #define DD 0x40                /* double density flag */
  142. private int
  143. eps_print_page(gx_device_printer *pdev, FILE *prn_stream, int y_9pin_high,
  144.   const char *init_string, int init_length, const char *end_string,
  145.   int archaic, int tab_hiccup)
  146. {    
  147.     static const char graphics_modes_9[5] =
  148.     {    
  149.     -1, 0 /*60*/, 1    /*120*/, -1, DD+3 /*240*/
  150.     };
  151.  
  152.     static const char graphics_modes_24[7] =
  153.     {    
  154.         -1, 32 /*60*/, 33 /*120*/, 39 /*180*/,
  155.     -1, -1, DD+40 /*360*/
  156.     };
  157.  
  158.     int y_24pin = (y_9pin_high ? 0 : pdev->y_pixels_per_inch > 72);
  159.     int in_y_mult = ((y_24pin | y_9pin_high) ? 3 : 1);
  160.     int line_size = gdev_mem_bytes_per_scan_line((gx_device *)pdev);
  161.     /* Note that in_size is a multiple of 8. */
  162.     int in_size = line_size * (8 * in_y_mult);
  163.     byte *buf1 = (byte *)gs_malloc(in_size, 1, "eps_print_page(buf1)");
  164.     byte *buf2 = (byte *)gs_malloc(in_size, 1, "eps_print_page(buf2)");
  165.     byte *in = buf1;
  166.     byte *out = buf2;
  167.     int out_y_mult = (y_24pin ? 3 : 1);
  168.     int x_dpi = pdev->x_pixels_per_inch;
  169.     char start_graphics =
  170.         (y_24pin ? graphics_modes_24 : graphics_modes_9)[x_dpi / 60];
  171.     int first_pass = (start_graphics & DD ? 1 : 0);
  172.     int last_pass = first_pass * (y_9pin_high == 2 ? 1 : 2); 
  173.     int y_passes = (y_9pin_high ? 3 : 1);
  174.     int dots_per_space = x_dpi / 10;    /* pica space = 1/10" */
  175.     int bytes_per_space = dots_per_space * out_y_mult;
  176.     int tab_min_pixels = x_dpi * MIN_TAB_10THS / 10;
  177.     int skip = 0, lnum = 0, pass, ypass;
  178.  
  179.     /* Check allocations */
  180.     if ( buf1 == 0 || buf2 == 0 )
  181.     {    if ( buf1 ) 
  182.           gs_free((char *)buf1, in_size, 1, "eps_print_page(buf1)");
  183.         if ( buf2 ) 
  184.           gs_free((char *)buf2, in_size, 1, "eps_print_page(buf2)");
  185.         return_error(gs_error_VMerror);
  186.     }
  187.  
  188.     /* Initialize the printer and reset the margins. */
  189.     fwrite(init_string, 1, init_length, prn_stream);
  190.     if ( init_string[init_length - 1] == 'Q' )
  191.         fputc((int)(pdev->width / pdev->x_pixels_per_inch * 10) + 2,
  192.               prn_stream);
  193.  
  194.     /* Calculate the minimum tab distance. */
  195.     if ( tab_min_pixels < max(MIN_TAB_PIXELS, 3) )
  196.         tab_min_pixels = max(MIN_TAB_PIXELS, 3);
  197.     tab_min_pixels -= tab_min_pixels % 3;    /* simplify life */
  198.  
  199.     /* Print lines of graphics */
  200.     while ( lnum < pdev->height )
  201.     {    
  202.         byte *in_data;
  203.         byte *inp;
  204.         byte *in_end;
  205.         byte *out_end;
  206.         byte *out_blk;
  207.         register byte *outp;
  208.         int lcnt;
  209.  
  210.         /* Copy 1 scan line and test for all zero. */
  211.         gdev_prn_get_bits(pdev, lnum, in, &in_data);
  212.         if ( in_data[0] == 0 &&
  213.              !memcmp((char *)in_data, (char *)in_data + 1, line_size - 1)
  214.            )
  215.             {    
  216.             lnum++;
  217.             skip += 3 / in_y_mult;
  218.             continue;
  219.         }
  220.  
  221.         /* Vertical tab to the appropriate position. */
  222.         while ( skip > 255 )
  223.         {    
  224.             fputs("\033J\377", prn_stream);
  225.             skip -= 255;
  226.         }
  227.         if ( skip )
  228.         {
  229.             fprintf(prn_stream, "\033J%c", skip);
  230.         }
  231.  
  232.         /* Copy the the scan lines. */
  233.             lcnt = gdev_prn_copy_scan_lines(pdev, lnum, in, in_size);
  234.         if ( lcnt < 8 * in_y_mult )
  235.         {    /* Pad with lines of zeros. */
  236.             memset(in + lcnt * line_size, 0,
  237.                    in_size - lcnt * line_size);
  238.         }
  239.  
  240.         if ( y_9pin_high == 2 ) 
  241.         {    /* Force printing of every dot in one pass */
  242.             /* by reducing vertical resolution */
  243.                 /* (ORing with the next line of data). */
  244.                 /* This is necessary because some Epson compatibles */
  245.             /* can't print neighboring dots. */
  246.             int i;
  247.             for ( i = 0; i < line_size * in_y_mult; ++i )
  248.                 in_data[i] |= in_data[i + line_size];
  249.         }
  250.  
  251.         if ( y_9pin_high )
  252.         {    /* Shuffle the scan lines */
  253.             byte *p;
  254.             int i;
  255.             static const char index[] =
  256.             {  0,  8, 16,  1,  9, 17,  
  257.                2, 10, 18,  3, 11, 19,
  258.                4, 12, 20,  5, 13, 21,
  259.                6, 14, 22,  7, 15, 23
  260.             };
  261.  
  262.             for ( i = 0; i < 24; i++ )
  263.             {
  264.                 memcpy(out+(index[i]*line_size),
  265.                        in+(i*line_size), line_size);
  266.             }
  267.             p = in;
  268.             in = out;
  269.             out = p;
  270.         }
  271.  
  272.     for ( ypass = 0; ypass < y_passes; ypass++ )
  273.     {
  274.         for ( pass = first_pass; pass <= last_pass; pass++ )
  275.         {
  276.         /* We have to 'transpose' blocks of 8 pixels x 8 lines, */
  277.         /* because that's how the printer wants the data. */
  278.         /* If we are in a 24-pin mode, we have to transpose */
  279.         /* groups of 3 lines at a time. */
  280.  
  281.         if ( pass == first_pass )
  282.         {
  283.             out_end = out;
  284.             inp = in;
  285.             in_end = inp + line_size;
  286.     
  287.             if ( y_24pin )
  288.                     { 
  289.                 for ( ; inp < in_end; inp++, out_end += 24 )
  290.                 { 
  291.                             gdev_prn_transpose_8x8(inp, line_size, out_end, 3);
  292.                             gdev_prn_transpose_8x8(inp + line_size * 8, 
  293.                                line_size, out_end + 1, 3);
  294.                             gdev_prn_transpose_8x8(inp + line_size * 16, 
  295.                                line_size, out_end + 2, 3);
  296.             }
  297.             /* Remove trailing 0s. */
  298.             while ( out_end > out && out_end[-1] == 0 &&
  299.                        out_end[-2] == 0 && out_end[-3] == 0)
  300.             {
  301.                      out_end -= 3;
  302.             }
  303.                     }
  304.             else
  305.                     { 
  306.                 for ( ; inp < in_end; inp++, out_end += 8 )
  307.                 { 
  308.                         gdev_prn_transpose_8x8(inp + (ypass * 8*line_size), 
  309.                                line_size, out_end, 1);
  310.                 }
  311.             /* Remove trailing 0s. */
  312.             while ( out_end > out && out_end[-1] == 0 )
  313.                 {
  314.                        out_end--;
  315.             }
  316.                     }
  317.         }
  318.  
  319.         for ( out_blk = outp = out; outp < out_end; )
  320.             { 
  321.                  /* Skip a run of leading 0s.  At least */
  322.                     /* tab_min_pixels are needed to make tabbing */
  323.                 /* worth it.  We do everything by 3's to */
  324.                 /* avoid having to make different cases */
  325.                 /* for 9- and 24-pin. */
  326.            if ( !archaic &&
  327.             *outp == 0 && out_end - outp >= tab_min_pixels &&
  328.             (outp[1] | outp[2]) == 0 &&
  329.             !memcmp((char *)outp, (char *)outp + 3,
  330.                 tab_min_pixels - 3)
  331.               )
  332.                     {
  333.                 byte *zp = outp;
  334.             int tpos;
  335.             byte *newp;
  336.            
  337.             outp += tab_min_pixels;
  338.                 while ( outp + 3 <= out_end && 
  339.                          *outp == 0 &&
  340.                     outp[1] == 0 && outp[2] == 0 )
  341.                 {
  342.                 outp += 3;
  343.                 }
  344.             tpos = (outp - out) / bytes_per_space;
  345.             newp = out + tpos * bytes_per_space;
  346.             if ( newp > zp + 10 )
  347.                 { 
  348.                     /* Output preceding bit data.*/
  349.                        if ( zp > out_blk )    
  350.                     {
  351.                     /* only false at beginning of line */
  352.                      eps_output_run(out_blk, (int)(zp - out_blk),
  353.                                    out_y_mult, start_graphics, 
  354.                            prn_stream,
  355.                            (y_9pin_high == 2 ?
  356.                             (1 + ypass) & 1 : pass));
  357.                 }
  358.                 /* Tab over to the appropriate position. */
  359.                 if ( tab_hiccup )
  360.                   fputs("\010 ", prn_stream); /* bksp, space */
  361.                 /* The following statement is broken up */
  362.                 /* to work around a bug in emx/gcc. */
  363.                 fprintf(prn_stream, "\033D%c", tpos);
  364.                 fputc(0, prn_stream);
  365.                 fputc('\t', prn_stream);
  366.                 out_blk = outp = newp;
  367.             }
  368.             }
  369.             else
  370.             {
  371.                 outp += out_y_mult;
  372.             }
  373.             }
  374.         if ( outp > out_blk )
  375.         {
  376.             eps_output_run(out_blk, (int)(outp - out_blk),
  377.                        out_y_mult, start_graphics,
  378.                    prn_stream,
  379.                    (y_9pin_high == 2 ? (1 + ypass) & 1 : pass));
  380.         }
  381.  
  382.         fputc('\r', prn_stream);
  383.         }
  384.         if ( ypass < y_passes - 1 )
  385.         fputs("\033J\001", prn_stream);
  386.     }
  387.     skip = 24 - y_passes + 1;        /* no skip on last Y pass */
  388.     lnum += 8 * in_y_mult;
  389.     }
  390.  
  391.     /* Eject the page and reinitialize the printer */
  392.     fputs(end_string, prn_stream);
  393.     fflush(prn_stream);
  394.  
  395.     gs_free((char *)buf2, in_size, 1, "eps_print_page(buf2)");
  396.     gs_free((char *)buf1, in_size, 1, "eps_print_page(buf1)");
  397.     return 0;
  398. }
  399.  
  400. /* Output a single graphics command. */
  401. /* pass=0 for all columns, 1 for even columns, 2 for odd columns. */
  402. private void
  403. eps_output_run(byte *data, int count, int y_mult,
  404.   char start_graphics, FILE *prn_stream, int pass)
  405. {    
  406.     int xcount = count / y_mult;
  407.  
  408.     fputc(033, prn_stream);
  409.     if ( !(start_graphics & ~3) )
  410.     {    
  411.         fputc("KLYZ"[start_graphics], prn_stream);
  412.     }
  413.     else
  414.     {    
  415.         fputc('*', prn_stream);
  416.         fputc(start_graphics & ~DD, prn_stream);
  417.     }
  418.     fputc(xcount & 0xff, prn_stream);
  419.     fputc(xcount >> 8, prn_stream);
  420.     if ( !pass )
  421.     {
  422.         fwrite(data, 1, count, prn_stream);
  423.     }
  424.     else
  425.     {    
  426.         /* Only write every other column of y_mult bytes. */
  427.         int which = pass;
  428.         register byte *dp = data;
  429.         register int i, j;
  430.  
  431.         for ( i = 0; i < xcount; i++, which++ )
  432.         {
  433.             for ( j = 0; j < y_mult; j++, dp++ )
  434.             {
  435.                 putc(((which & 1) ? *dp : 0), prn_stream);
  436.             }
  437.         }
  438.     }
  439. }
  440.  
  441. /* The print_page procedures are here, to avoid a forward reference. */
  442. #ifndef ARCHAIC
  443. #  define ARCHAIC 0
  444. #endif
  445. #ifndef TAB_HICCUP
  446. #  define TAB_HICCUP 0
  447. #endif
  448.  
  449. #define ESC 0x1b
  450. private const char eps_init_string[] = {
  451. #if ARCHAIC
  452.     ESC, '@', 'r', ESC, 'Q'
  453. #else
  454.     ESC, '@', ESC, 'P', ESC, 'l', 0, '\r', ESC, 'Q'
  455. #endif
  456. };
  457.  
  458. private int
  459. epson_print_page(gx_device_printer *pdev, FILE *prn_stream)
  460. {
  461.     return eps_print_page(pdev, prn_stream, 0, eps_init_string,
  462.                   sizeof(eps_init_string), "\f\033@",
  463.                   ARCHAIC, TAB_HICCUP);
  464. }
  465.  
  466. private int
  467. eps9high_print_page(gx_device_printer *pdev, FILE *prn_stream)
  468. {
  469.     return eps_print_page(pdev, prn_stream, 1, eps_init_string,
  470.                   sizeof(eps_init_string), "\f\033@",
  471.                   ARCHAIC, TAB_HICCUP);
  472. }
  473.  
  474. private int
  475. eps9mid_print_page(gx_device_printer *pdev, FILE *prn_stream)
  476. {
  477.     return eps_print_page(pdev, prn_stream, 2, eps_init_string,
  478.                   sizeof(eps_init_string), "\f\033@", 
  479.                   ARCHAIC, TAB_HICCUP);
  480. }
  481.  
  482. private int
  483. ibmpro_print_page(gx_device_printer *pdev, FILE *prn_stream)
  484. {
  485.     /*
  486.      * IBM Proprinter Guide to Operations, p. 4-5: "DC1: Select Printer: Sets
  487.      * the printer to accept data from your computer."  Prevents printer from
  488.      * interpreting first characters as literal text.
  489.      */
  490. #define DC1 0x11
  491.     static const char ibmpro_init_string[] = {
  492.         DC1, ESC, '3', 0x30
  493.     };
  494. #undef DC1
  495.     return eps_print_page(pdev, prn_stream, 0, ibmpro_init_string,
  496.                   sizeof(ibmpro_init_string), "\f", 1, 0);
  497. }
  498.